home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000279_news@columbia.edu _Wed Mar 27 22:16:40 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id WAA29554 for <kermit.misc@watsun>; Wed, 27 Mar 1996 22:16:39 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id WAA00219 for kermit.misc@watsun; Wed, 27 Mar 1996 22:16:37 -0500 (EST)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!newsxfer.itd.umich.edu!ncar!imci4!newsfeed.internetmci.com!howland.reston.ans.net!nntp.crl.com!crl.crl.com!not-for-mail
  5. From: randyd@crl.com (Randy Ding)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Problem with EOF
  8. Date: 27 Mar 1996 18:27:30 -0800
  9. Organization: CRL Network Services      (415) 705-6060  [Login: guest]
  10. Lines: 44
  11. Message-ID: <4jctei$h9e@crl.crl.com>
  12. References: <4jckum$6p4@news.internetmci.com>
  13. NNTP-Posting-Host: crl.com
  14.  
  15. In article <4jckum$6p4@news.internetmci.com>,  <0002016821@mcimail.com> wrote:
  16. >I have recently used version 3.14 to send a file to my HP-48.
  17. >With flow control set to none and send pause = 1000, I was not able 
  18. >to finish receiving the file on the HP-48 side. The pc screen
  19. >shows 100% sent but the last 3 packets (more or less) never seem
  20. >to get to the HP-48.
  21.  
  22. Actually, the hp does use xon/xoff.  
  23. Also, you MUST set con p all.
  24. Below is what I have always used, put it in your k95custom.ini.
  25. Omit the line that says set protocol if you are using 3.14.
  26. Don't need to mess with the send pause.
  27.  
  28. Note:  If the following does not work, then you have another problem..
  29.        possibly with your cable or something.
  30.  
  31.  
  32. ; -------------------------------------------
  33. ; hp48 binary and text file transfer commands
  34.  
  35. ; Macros for transferring files in text and binary mode...
  36. define bsend binary,send \%1 \%2  ; SEND in binary mode
  37. define tsend text,send \%1 \%2    ; SEND in text mode
  38. define bget binary,get \%1        ; GET in binary mode
  39. define tget text,get \%1          ; GET in text mode
  40.  
  41. define hpsetup,-
  42.   set port com1,-
  43.   set speed 9600,-
  44.   set protocol kermit,-
  45.   set flow xon,-
  46.   set parity none,-
  47.   set con p all
  48.  
  49. define bgethp hpsetup,-
  50.   set file type binary,-
  51.   get \%1
  52.  
  53. define btohp hpsetup, do bsend \%1 \%2
  54. define tohp hpsetup, do tsend \%1 \%2
  55. define frhp hpsetup, receive \%1
  56.  
  57.  
  58.